html,body,div,ul,ol,li,img,p,input,dl,dt,dd,h1,h2,h3,h4,h5,h6 {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
img {
    border: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover, a:focus, a:visited{
    color: inherit;
}
input {
    border: 0;
    outline: none;
}
.btn {
    cursor: pointer;
}
html, body {
    width: 100%;
}
div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: PingFang SC, "微软雅黑", Arial, Helvetia;
    font-weight: 400;
    color: #383838;
    overflow: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga","kern";
    min-width: 1200px;
    position: relative;
}
/* 清除浮动 */
.clearfix:after {
    clear: both;
    display: table;
    content: " ";
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.clearfix:before {
    clear: both;
    display: table;
    content: " ";
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
/* 浮动 */
.float-left {
    float: left;
}
.float-right {
    float: right;
}
/* 模块 */
.module {
    width: 100%;
    position: relative;
}
/* 背景色 */
.gray-bg {
    background: #FAFBFC;
}
.main-content {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.main-content.auto {
    height: auto;
}
/*省略*/
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*隐藏*/
.hidden{
    display: none!important;
}

/****************** 每个模块的大标题（下边没有蓝色短线的） *****************/
.module-title {
    font-size: 38px;
    line-height: 56px;
    color: #FFFFFF;
    text-align: center;
    padding-top: 50px;
    font-weight: 500;
}
.module-title.dark {
    color: #3B426B;
}
/****************** 每个模块的大标题（下边有一条蓝色短线的） *****************/
.module>.title {
    text-align: center;
    padding-top: 50px;
    font-size: 0;
}
.module>.title span {
    display: inline-block;
    font-size: 38px;
    color: #3B426B;
    line-height: 56px;
    margin-bottom: 16px;
    width: 100%;
    font-weight: 500;
}
/* 每个标题下的描述 */
.module-intro {
    font-size: 16px;
    line-height: 24px;
    color: #6D717C;
    text-align: center;
    vertical-align: middle;
    margin-top: 15px;
}
/* 蓝色小横线图标 */
.blue-border {
    width: 28px;
    height: 4px;
    display: inline-block;
    vertical-align: middle;
    background: #3776FF;
}
/* 蓝色小圆点 */
.blue-dot {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    display: inline-block;
    vertical-align: middle;
    background: #3977FE;
    margin-right: 15px;
}
/* 蓝色小圈圈 */
.blue-circle {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid #3877FE;
    margin-right: 15px;
}
/* 黑色小圆点 */
.dark-dot {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    display: inline-block;
    background: #3B426B;
    margin-right: 15px;
}
/******************** 按钮样式 **********************/
/* 白色蓝字的按钮 */
.btn-white-shadow {
    background: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(55,118,255,0.50);
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    color: #3978FF;
    text-align: center;
    line-height:24px;
}
a.btn-white-shadow {
    color: #3978FF!important;
}
/* 蓝色带阴影的按钮 */
.btn-blue-shadow {
    border-radius: 4px;
}
.btn-blue-shadow,
.btn-free-trial,
.btn-link {
    color: #FFF!important;
    font-size: 16px;
    background: #3776FF;
    box-shadow: 0 10px 20px 0 rgba(55,118,255,0.50);
}
/* 跳转链接 免费注册 */
.btn-link,
.btn-free-trial {
    width: 152px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    z-index: 999;
    cursor: pointer;
}

div > .free-trial-link,
button > .free-trial-link{
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 500;
}
a.btn-link {
    display: inline-block;
}
/*蓝色按钮无阴影*/ /*按钮大小不一定，不在这里写了*/
.btn-blue {
    background: #3776FF;
    border-radius: 8px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    line-height: 27px;
}
/*蓝色边框按钮*/ /*按钮大小不一定，不在这里写了*/
.btn-blue-plain {
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #3776FF;
    font-size: 18px;
    color: #3776FF;
    text-align: center;
    line-height: 27px;
}

/********  头部  ********/
.header {
    width: 100%;
    /*height: 80px;*/
    background: #FFF;
    font-size: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
.header-content {
    width: calc(100% - 498px);
    min-width: 1200px;
    margin: 0 auto;
}
.header-content .logo {
    width: 227px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    background-size: contain ;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/ksx-logo-color-double.png');
}
.header-content .logo a{
    display: block;
    width: 100%;
    height: 100%;
}

.header-content ul {
    display: inline-block;
    vertical-align: middle;
}
.header-content .nav-item {
    float: left;
    height: 80px;
    margin-left: 35px;
}
.header-content .nav-item.solution .icon-more {
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 8px;
    margin-left: 5px;
    margin-top: -2px;
    background-image: url(../img/icon-arrow-down-gray.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.header-content.transparent .nav-item.solution .icon-more {
    background-position: -54px -10px;
}
.header-content .nav-item .active,
.header-content .nav-item a:hover {
    background: #F1F3F8;
    border-radius: 2px;
}
.header-content .nav-item>a {
    float: left;
    font-size: 16px;
    color: #3B426B;
    padding: 0 5px;
    line-height: 24px;
    margin-top: 28px;
    border-radius: 2px;
}
.header-content .btn-box {
    float: right;
    margin-top: 23px;
    font-size: 0;
}
.header-content .btn-box .login {
    color: #3B426B;
    font-size: 14px;
}
.header-content .btn-box .login span {
    display: inline-block;
    vertical-align: middle;
    max-width: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-content .btn-box .user-pic {
    width: 34px;
    height: 34px;
    border-radius: 34px;
    margin-right: 10px;
    vertical-align: middle;
}
.header-content .btn-box .register {
    width: 104px;
    height: 44px;
    line-height: 44px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    margin-left: 30px;
}

/* 没有背景色的header */
.header.transparent {
    background: transparent;
    color: #FFF;
}
.header.no-fixed {
    position: absolute;
}
.header.transparent .header-content .logo {
    background-image: url(../fonts/e746511b71b74baea8bf92725cafb5ae.svg);
}

/* 红色的导航 */
.header.transparent.red .header-content .nav-item .active,
.header.transparent.red .header-content .nav-item>a:hover {
    background: #F54434;
}
.header.transparent.red .header-content .btn-box .register {
    background: #3776FF;
    box-shadow: 0 5px 10px 0 rgba(55,118,255,0.50);
    color: #ffffff!important;
}
.header.transparent.red .btn-blue-shadow,
.header.transparent.red .btn-free-trial,
.header.transparent.red .btn-link {
    background: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(248,82,82,0.2);
    color: #F85252;
}
.header .btn-blue-shadow {
    background: #F76377;
    box-shadow: 0 5px 10px 0 rgba(245,68,52,0.50);
}

/*解决方案的下拉*/
.header-content .solution {
    position: relative;
}
.header-content .solution-card {
    position: absolute;
    left: 50%;
    top: 62px;
    transform: translateX(-50%);
    padding-top: 10px;
    display: none;
}
.header-content .solution:hover .solution-card {
    display: block;
}
.header-content .solution-card .arrow {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 15px;
    box-shadow: -10px -10px 10px -8px rgba(58,62,81,0.1);
    transform: rotate(45deg) translateX(-18px);
}
.header-content .solution-card .card {
    width: 550px;
    padding: 40px 40px 35px;
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(58,62,81,0.1);
}
.header-content .solution-card .list {
    float: left;
    margin-right: 2px;
}
.header-content .solution-card .list:last-child {
    margin-right: 0;
}
.header-content .solution-card .list dt {
    width: 155px;
    font-size: 14px;
    color: #6D717C;
    text-align: left;
    line-height: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}
.header-content .solution-card .list.scene dt {
    border-color: #3978FF;
}
.header-content .solution-card .list.industry dt {
    border-color: rgba(57,120,255,0.5);
}
.header-content .solution-card .list.content dt {
    border-color: rgba(57,120,255,0.2);
}
.header-content .solution-card .list dd {
    padding: 4px 5px 4px 30px;
    font-size: 14px;
    text-align: left;
    line-height: 18px;
    margin-top: 20px;
    position: relative;
}
.header-content .solution-card .list dd i {
    width: 21px;
    height: 30px;
    position: absolute;
    left: 5px;
    top: 2px;
    background-image: url('../img/icon-header-solution-nav.png');
    background-repeat: no-repeat;
    background-size: auto 25px;
}
.header-content .list.scene .icon-1-1 {
    background-position: -66px 0;
}
.header-content .list.scene .icon-1-2 {
    background-position: 0 0;
}
.header-content .list.scene .icon-1-3 {
    background-position: -21px 0;
}
.header-content .list.scene .icon-1-4 {
    background-position: -43px 0;
}

.header-content .list.industry .icon-2-1 {
    background-position: -315px 0;
}
.header-content .list.industry .icon-2-2 {
    background-position: -289px 0;
}
.header-content .list.industry .icon-2-3 {
    background-position: -184px -3px;
}
.header-content .list.industry .icon-2-4 {
    background-position: -89px 0;
}
.header-content .list.industry .icon-2-5 {
    background-position: -135px 0;
}
.header-content .list.industry .icon-2-6 {
    background-position: -160px 0;
}
.header-content .list.industry .icon-2-7 {
    background-position: -210px 0;
}

.header-content .list.content .icon-3-1 {
    background-position: -235px 0;
}
.header-content .list.content .icon-3-2 {
    background-position: -262px 0;
}
.header-content .list.content .icon-3-3 {
    background-position: -112px 0;
}

.header-content .solution-card .list dd:hover {
    background: #F1F3F8;
    border-radius: 2px;
}
.header-content .solution-card .list a {
    color: #3B426B;
}

.header-content .solution-card .all {
    font-size: 14px;
    color: #6D717C;
    line-height: 18px;
    position: absolute;
    right: 40px;
    bottom: 35px;
}
/************* banner ***********/
/************ 产品特色 **************/
.product-intro>.title {
    padding-top: 80px;
}
.product-intro .nav-list {
    font-size: 0;
    text-align: center;
}
.product-intro .nav-item {
    width: 151px;
    height: 137px;
    display: inline-block;
    position: relative;
    padding-top: 30px;
    box-sizing: border-box;
    cursor: pointer;
}
.product-intro .nav-item .icon {
    width: 40px;
    height: 40px;
    margin: 6px auto 0;
	margin-left:-12%;
    background-image: url("../img/icon-product.png");
    background-size: 40px auto;
    background-repeat: no-repeat;
}
.product-intro .nav-item:nth-child(1) .icon {
    background-position: 0 -305px;
}
.product-intro .nav-item:nth-child(2) .icon {
    background-position: 0 -230px;
}
.product-intro .nav-item:nth-child(3) .icon {
    background-position: 0 -110px;
}
.product-intro .nav-item:nth-child(4) .icon {
    background-position: 0 -150px;
}
.product-intro .nav-item:nth-child(5) .icon {
    background-position: 0 -190px;
}
.product-intro .nav-item:nth-child(6) .icon {
    background-position: 0 5px;
    background-size: 50px auto;
}
.product-intro .nav-item:nth-child(7) .icon {
    background-position: 0 -30px;
}
.product-intro .nav-item:nth-child(8) .icon {
    background-position: 0 -267px;
}
.product-intro .nav-item span {
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateX(-50%);
    height: 42px;
    font-size: 16px;
    color: #3B426B;
    white-space: nowrap;
    border-bottom: 5px solid transparent;
}
.product-intro .nav-item:hover span {
    color: #3777FF;
}
.product-intro .nav-item.active span {
    color: #3777FF;
    border-color: #3977FE;
}
.product-intro .swiper-container {
    height: 500px;
}
.product-intro .intro-item {
    height: 500px;
    font-size: 0;
    border-top: 1px solid #E6E7FB;
    background-color: #fff;
}
.product-intro .intro-item .main-content {
    position: relative;
}
.product-intro .intro-item .content{
    position: absolute;
    left: 575px;
    top: 50%;
    transform: translateY(-50%);
}
.product-intro .content .title {
    line-height: 41px;
    font-size: 28px;
    color: #3B426B;
    text-align: left;
    margin-left: -10px;
    font-weight: 500;
}
.product-intro .content .title .icon {
    display: inline-block;
    height: 50px;
    width: 50px;
    margin-right: 12px;
    vertical-align: middle;
    background-image: url(../img/icon-product.png);
    background-size: 50px auto;
    background-repeat: no-repeat;
}
.product-intro .content .title .icon.web {
    background-position: 0 -385px;
}
.product-intro .content .title .icon.test {
    background-position: 0 -291px;
}
.product-intro .content .title .icon.web2 {
    background-position: 0 -45px;
}
.product-intro .content .title .icon.test2 {
    background-position: 0 -337px;
}
.product-intro .content .title .icon.paper {
    background-position: 0 -145px;
}
.product-intro .content .title .icon.exam {
    background-position: 0 -195px;
}
.product-intro .content .title .icon.course {
    background-position: 0 -245px;
}
.product-intro .content .title .icon.push {
    background-position: 0 0;
    background-size: 60px auto;
}

.product-intro .intro-item .detail {
    font-size: 14px;
    color: #3B426B;
    line-height: 20px;
    margin-top: 20px;
}
.product-intro .intro-item .main-content>img {
    width: 550px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.product-intro .content .btn-free-trial {
    margin-top: 80px;
}
/************* 页面中固定的在线咨询 **************/
.contact-online-box {
    height: 236px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    text-align: right;
}
.contact-online-box li {
    width: 72px;
    height: 72px;
    background: #FFFFFF;
    box-shadow: 0 2px 6px 0 rgba(58,62,81,0.10);
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    color: #3B426B;
    text-align: center;
    position: absolute;
    right: 0;
    box-sizing: border-box;
    transition: width 0.6s ease;
    overflow: hidden;
    cursor: pointer;
    font-weight: 500;
}
.contact-online-box li i {
    position: absolute;
    top: 0;
    left: 25px;
    width: 22px;
    height: 43px;
    margin: 0 auto;
    background-image: url(../img/icon-contact-us.png);
    background-repeat: no-repeat;
    background-size: auto 32px;
    transition: left 0.6s ease, top 0.6s ease;
}
.contact-online-box li span {
    width: 100%;
    position: absolute;
    left: 0;
    top: 43px;
}
.contact-online-box li div {
    width: 100%;
    position: absolute;
    left: 100px;
    top: 37px;
    transition: left 0.6s ease;
}
#goTop {
    top: 0;
    display: none;
}
#contactKSXOnline {
    top: 82px;
}
#contactKSXOnPhone {
    top: 164px;
}
#goTop i {
    background-position: -4px 10px;
}
#contactKSXOnline i {
    background-position: -97px 10px;
}
#contactKSXOnPhone i {
    background-position: -65px 10px;
}
#contactKSXOnline div {
    color: #6D717C;
}
#contactKSXOnPhone div {
    color: #FE8545;
    font-family: "Arial Black";
}
#contactKSXOnline:hover,
#contactKSXOnPhone:hover {
    width: 236px;
    padding: 15px 0 15px 57px;
    border-radius: 6px;
    position: relative;
    line-height: 20px;
    font-size: 14px;
    text-align: left;
}
#contactKSXOnline:hover i,
#contactKSXOnPhone:hover i {
    left: 20px;
    top: 14.5px;
}
#contactKSXOnline:hover span,
#contactKSXOnPhone:hover span {
    left: 57px;
    top: 15px;
}
#contactKSXOnline:hover div,
#contactKSXOnPhone:hover div {
    left: 57px;
}
/*蓝色*/
.contact-online-box.blue li {
    background: #3777FF;
    box-shadow: 0 2px 6px 0 rgba(58,62,81,0.10);
    border-radius: 4px 0 0 4px;
    color: #FFF;
}
.contact-online-box.blue li span,
.contact-online-box.blue li div,
.contact-online-box.red li span,
.contact-online-box.red li div {
    font-weight: 500;
    color: #FFF!important;
}
.blue #goTop i,
.red #goTop i {
    background-position: -35px 10px;
}
.blue #contactKSXOnline i,
.red #contactKSXOnline i {
    background-position: -161px 10px;
}
.blue #contactKSXOnPhone i,
.red #contactKSXOnPhone i {
    background-position: -129px 10px;
}
/*红色*/
.contact-online-box.red li {
    background: #F54434;
    box-shadow: 0 2px 6px 0 rgba(58,62,81,0.10);
    border-radius: 4px;
    color: #FFF;
}

/********* footer *********/
.footer {
    height: 830px;
    position: relative;
}
.footer.no-trial{
    height: 656px;
}
.footer.no-trial .free-trial{
    display: none;
}

/* 免费试用 */
.footer .free-trial {
    width: 100%;
    height: 287px;
    padding-top: 37px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.footer .free-trial .bg {
    width: 1200px;
    height: 236px;
    background: #3776FF;
    border-radius: 10px;
    position: relative;
    padding: 50px 0 60px 80px;
    margin: 0 auto;
}
.footer .free-trial img {
    height: 287px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.footer .free-trial .title {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}
.footer .free-trial-box {
    width: 500px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}
.footer .free-trial-box .input {
    width: calc(100% - 192px);
    font-size: 18px;
    border-radius: 8px 0 0 8px;
    padding-left: 40px;
}
.footer .free-trial-box .input,
.footer .free-trial-box .btn {
    height: 60px;
}
.footer .free-trial-box .btn {
    width: 152px;
    background: #F76377;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 60px;
    text-align: center;
}
/* footer-content */
.footer-content {
    width: 100%;
    height: 656px;
    background: #3B426B;
    position: absolute;
    bottom: 0;
    padding-top: 190px;
}
.footer-content .main-content {
    position: relative;
}
.footer-content .list {
    float: left;
    font-size: 14px;
    text-align: left;
    line-height: 18px;
    margin-right: 60px;
    color: #B4B6BD;
}
.footer-content .product {
    margin-right: 100px;
}
.footer-content .list dt {
    color: #FFF;
    font-weight: 600;
}
.footer-content .list a {
    color: #B4B6BD;
    display: block;
}
.footer-content .list a:hover {
    color: #3776FF;
}
.footer-content .list dt {
    margin-bottom: 20px;
}
.footer-content .list dd {
    margin-bottom: 15px;
}
.footer-content .list.news dd a {
    width: 320px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.footer-content .product dl:nth-child(2) {
    margin-top: 33px;
}
.footer-content .erweima-box {
    margin-top: 25px;
    font-size: 0;
}
.footer-content .erweima-box .erweima {
    height: 115px;
    padding: 5px;
    border: 1px solid #6D717C;
    text-align:  center;
    display: inline-block;
    color: #B4B6BD;
    font-size: 12px;
    line-height: 18px;
    margin-right: 10px;
    vertical-align: middle;
}
.footer-content .erweima-box .erweima div {
    width: 80px;
    height: 80px;
    background-color: #6D717C;
    background-image: url(../img/img-footer-erweima.png);
    background-repeat: no-repeat;
    background-size: 180px auto;
    margin-top: 5px;
    display: inline-block;
}
.footer-content .erweima-box .erweima div span {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 90px;
    text-align: center;
}
.footer-content .erweima-box .weixin {
    background-position: -5px -5px;
}
.footer-content .erweima-box .app {
    background-position: -95px -5px;
    position: relative;
}

.footer-content .ksx-company-info li {
    margin-top: 10px;
    font-size: 14px;
    color: #B4B6BD;
    line-height: 18px;
    padding-left: 30px;
    position: relative;
}
.footer-content .ksx-company-info li i {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon-footer-contact-us.png);
    background-size: auto 28px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}
.footer-content .address i {
    background-position: -6px -5px;
}
.footer-content .telephone i {
    background-position: -31px -3px;
}
.footer-content .email i {
    background-position: -55px -2px;
}
.footer .copyright {
    width: 100%;
    font-size: 12px;
    color: #727585;
    text-align: left;
    border-top: 1px solid #42475E;
    padding: 30px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.footer .copyright .beian{
    margin-left: 30px;
}
.footer .copyright .beian img{
    position: relative;
    top: -2px;
    height: 20px;
    vertical-align: middle;
    margin-right: 7px;
}

/*解决方案用盒子，shadow-box hover反色*/
.shadow-box{
    margin-right: -44px;
}
.shadow-box .box {
    height: 160px;
    width: 160px;
    float: left;
    background-color: #FFFFFF;
    box-shadow: 0 0 15px 0 rgba(55,118,255,0.10);
    border-radius: 4px;
    margin-right: 44px;
    background-repeat: no-repeat;
    overflow: hidden;
}
.shadow-box .box a{
    display: block;
    padding-top: 33px;
    padding-bottom: 32px;
    width: 100%;
}
.shadow-box .box .title{
    font-size: 18px;
    color: #3B426B;
    text-align: center;
    font-weight: 500;
}
.shadow-box .box .title:before{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 10px;
    background-image: url('../img/icon-list.png');
    background-size: 700px auto!important;
}
.shadow-box .box:hover {
    background-image: url('../img/icon-list.png');
    background-size: 700px auto!important;
}
.shadow-box .box:hover .title{
    color: #fff;
}
.shadow-box .box.s1:hover{
    background-position: -0px -0px;
}
.shadow-box .box.s2:hover{
    background-position: -0px -160px;
}
.shadow-box .box.s3:hover{
    background-position: -160px -160px;
}
.shadow-box .box.s4:hover{
    background-position: -160px -0px;
}
.shadow-box .box.s5:hover{
    background-position: -320px -0px;
}
.shadow-box .box.s6:hover{
    background-position: -320px -160px;
}
.shadow-box .box.s7:hover{
    background-position: -0px -320px;
}
.shadow-box .box.s8:hover{
    background-position: -320px -320px;
}
.shadow-box .box.s9:hover{
    background-position: -160px -320px;
}
.shadow-box .box.s10:hover{
    background-position: -480px -320px;
}
.shadow-box .box.s11:hover{
    background-position: -480px -160px;
}
.shadow-box .box.s12:hover{
    background-position: -0px -480px;
}
.shadow-box .box.s13:hover{
    background-position: -160px -480px;
}
.shadow-box .box.s14:hover{
    background-position: -480px -0px;
}
.shadow-box .box:hover .title:before{
    background: none!important;
}
.shadow-box .box.s1 .title:before{
    background-position: -380px -480px;
}
.shadow-box .box.s2 .title:before{
    background-position: -440px -480px;
}
.shadow-box .box.s3 .title:before{
    background-position: -500px -480px;
}
.shadow-box .box.s4 .title:before{
    background-position: -560px -480px;
}
.shadow-box .box.s5 .title:before{
    background-position: -380px -540px;
}
.shadow-box .box.s6 .title:before{
    background-position: -320px -540px;
}
.shadow-box .box.s7 .title:before{
    background-position: -440px -540px;
}
.shadow-box .box.s8 .title:before{
    background-position: -500px -540px;
}
.shadow-box .box.s9 .title:before{
    background-position: -320px -480px;
}
.shadow-box .box.s10 .title:before{
    background-position: -560px -540px;
}
.shadow-box .box.s11 .title:before{
    background-position: -640px -0px;
}
.shadow-box .box.s12 .title:before{
    background-position: -640px -60px;
}
.shadow-box .box.s13 .title:before{
    background-position: -640px -120px;
}
.shadow-box .box.s14 .title:before{
    background-position: -640px -180px;
}

/*除首页外所有页面首屏样式*/
.page-intro{
    height: 500px;
    padding-top: 80px;
}
.page-intro.center{
    text-align: center;
}
.page-intro .title{
    font-size: 44px;
    color: #FFF;
    font-weight: 500;
}
.page-intro .sub-title{
    color: #F1F3F8;
}

/*面包线*/
.breadcrumb{
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #3B426B;
}
.breadcrumb li{
    float: left;
}
.breadcrumb li + li:before{
    content: ">";
    margin-left: 3px;
    margin-right: 5px;
}
.breadcrumb li a {
    color: #3B426B;
}
.breadcrumb li a:hover, .breadcrumb li a:focus{
    color: #3776FF;
}


/*分类标签组成的导航*/
.classify-nav{
    font-size: 0;
}
.classify-nav li{
    border-radius: 4px;

    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    line-height: 34px;
    color: #3B426B;

    width: 76px;
    height: 34px;
    font-weight: 500;

    display: inline-block;
}
.classify-nav li a{
    display: block;
    width: 100%;
    height: 100%;
}
.classify-nav li:hover{
    background: #F1F3F8;
}
.classify-nav li.active{
    color: #FFF;
    background: #3776FF;
    box-shadow: 0 5px 10px 0 rgba(55,118,255,0.50);
}
.classify-nav li + li{
    margin-left: 30px;
}
/*分页器*/
.pagination{
    text-align: center;
    font-size: 0;
}
.pagination .page{
    display: inline-block;
    width: 30px;
    height: 30px;

    background: #FFFFFF;
    box-shadow: 0 1px 5px 0 rgba(58,62,81,0.05);
    border-radius: 2px;
    font-size: 14px;
    color: #6D717C;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
}
.pagination .page.prev,
.pagination .page.prev.disabled, .pagination .page.prev.disabled:hover,
.pagination .page.next,
.pagination .page.next.disabled, .pagination .page.next.disabled:hover
.pagination .page.prev.active, .pagination .page.prev:hover,
.pagination .page.next.active, .pagination .page.next:hover{
    background-image: url('../img/arrow.png');
}
.pagination .page.prev,
.pagination .page.prev.disabled, .pagination .page.prev.disabled:hover{
    background-position: 1px -34.5px!important;
}
.pagination .page.next,
.pagination .page.next.disabled, .pagination .page.next.disabled:hover{
    background-position: -55px -1.5px!important;
}

.pagination .page.active,.pagination .page:hover{
    background-color: #1A8CFE;
    color: #FFFFFF;
}

.pagination .page.prev.active, .pagination .page.prev:hover{
    background-position: 1px -1.5px!important;
}
.pagination .page.next.active, .pagination .page.next:hover{
    background-position: -27px -1.5px!important;
}
.pagination .page.disabled, pagination .page.disabled:hover{
    background-color: #fff;
    cursor: not-allowed;
    color: #B4B6BD;
}

.pagination .page + .page{
    margin-left: 10px;
}
.pagination .page a{
    display: block;
    width: 100%;
    height: 100%;
}

/* 广告条 */
#header .gwggt{
    position: relative;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
}
#header .gwggt img{
    height: 60px;
    position: relative;
    margin-left: 50%;
    transform: translateX(-50%);
}
#header .gwggt .iconclose{
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 35px;
    transform: rotate(135deg);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
    color: #fff;
}
/*.header.transparent{*/
/*    height: 80px;*/
/*}*/
/*.header{*/
/*    height: 140px;*/
/*}*/


@media screen and (min-width: 1920px) {
    .page-intro .mask,
    .banner .mask {
        background-size: cover!important;
        background-position: center!important;

    }

    /* 屏幕宽度大于1920 */
    #header .gwggt img{
        width: 100%;
        height: auto;
    }
}

.banner_body{ width:1920px; height:750px; background:url(../img/banner.jpg) center center no-repeat; position:relative; z-index:99;}